Skip to content

Commit

Permalink
fix cla ?
Browse files Browse the repository at this point in the history
  • Loading branch information
cedvdb committed Sep 13, 2024
1 parent 48c79cf commit 20a16d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/go_router/lib/src/path_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ Map<String, String> extractPathParameters(

/// Concatenates two paths.
///
/// e.g: pathA = /a, pathB = /c/d, concatenatePaths(pathA, pathB) = /a/c/d.
/// or: pathA = a, pathB = c/d, concatenatePaths(pathA, pathB) = /a/c/d.
/// e.g: pathA = /a, pathB = /c/d, concatenatePaths(pathA, pathB) = /a/c/d.
/// or: pathA = a, pathB = c/d, concatenatePaths(pathA, pathB) = /a/c/d.
String concatenatePaths(String parentPath, String childPath) {
final Iterable<String> segments = <String>[
...parentPath.split('/'),
Expand Down

0 comments on commit 20a16d8

Please sign in to comment.