Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanN7 authored and PetarKirov committed Jul 14, 2023
1 parent 0fbea72 commit cceb253
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion basics/type-qualifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The element type of a pointer (or array) can be qualified separately:
q = null; // OK
*q = 5; // error

The [`string` type](alias-strings) is defined as `immutable(char)[]`:
The [`string` type](basics/alias-strings) is defined as `immutable(char)[]`:

string s = "hi";
s ~= " world"; // OK, append new characters
Expand Down
6 changes: 3 additions & 3 deletions gems/functional-programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
D puts an emphasis on *functional programming* and provides
first-class support for development
in a functional style. See:
* [immutable](../basics/type-qualifiers) type qualifier
* [anonymous functions](../basics/delegates#anonymous-functions-lambdas)
* [range algorithms](range-algorithms)
* [immutable](basics/type-qualifiers) type qualifier
* [anonymous functions](basics/delegates#anonymous-functions-lambdas)
* [range algorithms](gems/range-algorithms)

## Pure functions

Expand Down

0 comments on commit cceb253

Please sign in to comment.