Skip to content

Commit a5fcc3c

Browse files
committed
fix: add missing line breaks and update code block attributes for clarity
1 parent 92a2d6d commit a5fcc3c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/es/new-concepts/interior-mutability.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ a controlar el acceso a los datos, ni delimitar las posibilidades de un objeto.
2525
```go
2626
package main
2727
import "fmt"
28+
2829
func main() {
2930
x := 10
3031
p := &x // p apunta a x
@@ -186,7 +187,7 @@ abstracción más realista:
186187
{{#tabs }}
187188
{{#tab name="main.rs" }}
188189

189-
```rust
190+
```rust,no_run
190191
mod client;
191192
use client::Client;
192193
use std::thread::sleep;
@@ -209,7 +210,7 @@ fn main() {
209210
{{#endtab }}
210211
{{#tab name="client.rs" }}
211212

212-
```rust
213+
```rust,ignore
213214
use std::cell::RefCell;
214215
use std::time::{Duration, Instant};
215216

0 commit comments

Comments
 (0)