docs(rust): fix formatting on functions content page (#7027)

pull/7030/head
Mateo 1 month ago committed by GitHub
parent 6133c10beb
commit fc3acb9702
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/rust/content/101-language-basics/100-syntax/103-functions.md

@ -1,4 +1,4 @@
Functions and Method Syntax
# Functions and Method Syntax
In Rust, functions are declared using the `fn` keyword. Each function can take a set of input variables with their specified types, and may return data of a specified type. The body of a function is contained within curly braces `{}`. Unlike other languages, in Rust, you don't need to end the last statement in a block with a semicolon; omitting the last semicolon of a block in this way turns the last statement into an expression, and the result of this expression becomes the implicit return value of the block. In other words, if we want to return a value, we simply write the expression we want to return.

Loading…
Cancel
Save