Skip to content

Commit 3fb6be7

Browse files
cavewomantjgrathwell
authored andcommitted
Removes double the typos
1 parent 9d85777 commit 3fb6be7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

sites/en/intro-to-rails/rails_architecture.step

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ explanation {
2222

2323
h3 "Model"
2424
message <<-MARKDOWN
25-
* For all the Models we create in RailsBridge, Model objects have a corresponding record in the the database. The name of the table in the database is the plural version of the Model's class name. For example, if the Model is called 'Duck', it will automatically query or write to the 'ducks' table in the database.
26-
* Methods internal to Rails make it easy to automatically write records to the the database and query the database to get the records again later.
25+
* For all the Models we create in RailsBridge, Model objects have a corresponding record in the database. The name of the table in the database is the plural version of the Model's class name. For example, if the Model is called 'Duck', it will automatically query or write to the 'ducks' table in the database.
26+
* Methods internal to Rails make it easy to automatically write records to the database and query the database to get the records again later.
2727
* The Model is a bridge between the database and your application's code.
2828
MARKDOWN
2929

sites/en/job-board/create_a_rails_app.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ message <<-MARKDOWN
4141
(You must have at least one window open, so if that option is greyed out, open a window with cmd+n (Mac) or ctl+n (PC))
4242
MARKDOWN
4343

44-
discussion_box "Text Editor vs Command Line", "Review the differences between the the command line and your text editor, even if everyone already knows!"
44+
discussion_box "Text Editor vs Command Line", "Review the differences between the command line and your text editor, even if everyone already knows!"
4545

4646
message "# Let's Talk About Dependencies"
4747

sites/en/job-board/store_jobs_in_the_database.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUBY
4848
message <<-MARKDOWN
4949
Running this code will make a table in our database called jobs. Right now it just has the timestamps (`created_at` and `updated_at`). What else should a job have? Let's start with a title and description.
5050

51-
Add the the title and description so it looks like this:
51+
Add the title and description so it looks like this:
5252
MARKDOWN
5353

5454
source_code :ruby, <<-RUBY

sites/en/workshop/noobie-outline.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RailsBridge Introductory Curriculum for Non-Programmers
1+
RailsBridge Introductory Curriculum for Non-Programmers
22

33
Target Audience: Students who have not exposure to the command line and/or programming (and may be fuzzy on how the file system works)
44

@@ -14,12 +14,12 @@ File Directories:
1414
Use house / rooms / drawers metaphor for how directories store files and keep everything in your ‘house’ organized.
1515
Review ./ and ~/ references to self and root directories. Explain where home and root are located in relation to all directories.
1616
Explain difference between absolute paths (starting with a /) and relative paths.
17-
.. is the relative path the the parent directory.
17+
.. is the relative path the parent directory.
1818
Command Line Basics:: pwd, ls, cd, touch, mv, cp, rm, .. (parent directory)
1919
Text Editing:
2020
Explain differences between text editor vs. word processor.
2121
Have group open editor, create and save file with explanation of how and where files are stored.
22-
Explain file extensions and file types. File types tell the editor how to color the special words in each language.
22+
Explain file extensions and file types. File types tell the editor how to color the special words in each language.
2323
Explain difference between the buffer (in the editor’s memory) and the file (stored on disk). Emphasize the importance of saving the buffer to a file before trying to run it with ruby.
2424
Compilers, Interpreters and Programming Languages:
2525
Use metaphor of programming language as an agreed set of rules about syntax for writing source code that is sent to the interpreter and translated into byte code.
@@ -44,10 +44,10 @@ Explain ‘method calls’.
4444
Explain to group the important of strings and review string operations. Have group work with strings in IRB.
4545
IRB Console:
4646
Have group open IRB console and create objects, method calls and variable assignments.
47-
Tie in lecture above on Objects, Methods, Variables with exercises in IRB that allow students to see results line-by-line.
47+
Tie in lecture above on Objects, Methods, Variables with exercises in IRB that allow students to see results line-by-line.
4848
Have group query classes for their methods in IRB.
4949
HTTP:
5050
Lead group exercise in using telnet to query Wikipedia, make GET request and view response in command line, then compare to view source of same page in browser.
5151
Sinatra Application
52-
Lead group exercise in writing Sinatra application and run it locally. “Hello, Web!”
53-
Extend to add “the time is Sun Mar 27 09:44:09 PDT 2011” using `date`.
52+
Lead group exercise in writing Sinatra application and run it locally. “Hello, Web!”
53+
Extend to add “the time is Sun Mar 27 09:44:09 PDT 2011” using `date`.

0 commit comments

Comments
 (0)