Browse Source

Fixup argument list

Alois Mahdal 6 years ago
parent
commit
dec19f2b42
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      README.md

+ 7
- 7
README.md View File

@@ -134,20 +134,20 @@ Eg. an initializing function from module *bar* would have to be called
134 134
 
135 135
 Yep, this is a bit annoying, but:
136 136
 
137
- *  you'll get used,
137
+ *  You'll get used to it.
138 138
 
139
- *  since Bash has no namespaces, this is the only way to avoid conflicts
139
+ *  Since Bash has no namespaces, this is the only way to avoid conflicts
140 140
     without having to read every imported module's source code (recursively,
141 141
     and after every update).
142 142
 
143
- *  it can actually be helpful: seeing function like `jat__eval`, you
143
+ *  It can actually be helpful: seeing function like `jat__eval`, you
144 144
     *immediately know* it's from *jat* module (heck, you can call `sfdoc
145
-    -O jat__eval`),
145
+    -O jat__eval`).
146 146
 
147
- *  the above also applies to possible tools you might want to develop (it's
148
-    possible to *parse* module name from object name),
147
+ *  The above also applies to possible tools you might want to develop (it's
148
+    possible to *parse* module name from object name).
149 149
 
150
- *  it provides nice excuse to keep module and function names short!
150
+ *  It provides nice excuse to keep module and function names short!
151 151
 
152 152
 
153 153
 Creating new tests