Skip to content

Commit 96a5754

Browse files
committed
Fixed bad link
1 parent 81c019c commit 96a5754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tour/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Scala is a pure object-oriented language in the sense that [every value is an ob
1111
## Scala is functional ##
1212
Scala is also a functional language in the sense that [every function is a value](unified_types.html). Scala provides a [lightweight syntax](anonymous-function-syntax.html) for defining anonymous functions, it supports [higher-order functions](higher-order-functions.html), it allows functions to be [nested](nested-functions.html), and supports [currying](currying.html). Scala's [case classes](case-classes.html) and its built-in support for [pattern matching](pattern-matching.html) model algebraic types used in many functional programming languages.
1313

14-
Furthermore, Scala's notion of pattern matching naturally extends to the processing of XML data with the help of (right-ignoring sequence patterns)[regular-expression-patterns.html]. In this context, [sequence comprehensions](sequence-comprehensions.html) are useful for formulating queries. These features make Scala ideal for developing applications like web services.
14+
Furthermore, Scala's notion of pattern matching naturally extends to the processing of XML data with the help of [right-ignoring sequence patterns](regular-expression-patterns.html). In this context, [sequence comprehensions](sequence-comprehensions.html) are useful for formulating queries. These features make Scala ideal for developing applications like web services.
1515

1616
## Scala is statically typed ##
1717
Scala is equipped with an expressive type system that enforces statically that abstractions are used in a safe and coherent manner. In particular, the type system supports:

0 commit comments

Comments
 (0)