Skip to content

Commit

Permalink
Clarify default setting of :static to reflect the Proc
Browse files Browse the repository at this point in the history
Patch from @mwpastore, closes sinatra#1052
  • Loading branch information
Zachary Scott committed Jan 24, 2016
1 parent 866ff85 commit bab0355
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.de.md
Expand Up @@ -2541,7 +2541,7 @@ werden:
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.es.md
Expand Up @@ -2336,7 +2336,7 @@ de ambos estilos:
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion README.fr.md
Expand Up @@ -2524,7 +2524,7 @@ mineures en ce qui concerne les paramètres par défaut :
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.ja.md
Expand Up @@ -2319,7 +2319,7 @@ end
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.ko.md
Expand Up @@ -2492,7 +2492,7 @@ end
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2562,7 +2562,7 @@ different default settings:
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.ru.md
Expand Up @@ -2479,7 +2479,7 @@ end
logging true false
method_override true false
inline_templates true false
static true false
static true File.exist?(public_folder)

### Запуск модульных приложений

Expand Down
2 changes: 1 addition & 1 deletion README.zh.md
Expand Up @@ -2423,7 +2423,7 @@ end
<tr>
<td>static</td>
<td>true</td>
<td>false</td>
<td>File.exist?(public_folder)</td>
<td>true</td>
</tr>
</table>
Expand Down

0 comments on commit bab0355

Please sign in to comment.