You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -161,7 +161,7 @@ JLRoutes supports setting up routes that will match an arbitrary number of path
161
161
For example, the following route would be triggered for any URL that started with `/wildcard/`, but would be rejected by the handler if the next component wasn't `joker`.
if ([pathComponents count] > 0 && [pathComponents[0] isEqualToString:@"joker"]) {
167
167
// the route matched; do stuff
@@ -171,7 +171,7 @@ For example, the following route would be triggered for any URL that started wit
171
171
// not interested unless the joker's in it
172
172
return NO;
173
173
}];
174
-
```
174
+
```
175
175
176
176
177
177
### Optional routes ###
@@ -186,9 +186,9 @@ JLRoutes supports setting up routes with optional parameters. At the route regis
186
186
### License ###
187
187
BSD 3-Clause License:
188
188
> Copyright (c) 2016, Joel Levin. All rights reserved.
189
-
189
+
190
190
> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
191
-
191
+
192
192
>* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
193
193
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
194
194
* Neither the name of JLRoutes nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
0 commit comments