Skip to content

Commit

Permalink
edited
Browse files Browse the repository at this point in the history
  • Loading branch information
clsource committed Feb 29, 2024
1 parent f08a488 commit 6263b21
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions book/chapters/10/chapter.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ tienen el mismo valor.
----
# a = 1
# b = "elixir"
# c = "cinf1085"
{a, b, c} = {1, "elixir", "cinf1085"}
# c = "ninjas"
{a, b, c} = {1, "elixir", "ninjas"}
----

*Enlaces*
Expand Down
6 changes: 3 additions & 3 deletions docs/book.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5119,8 +5119,8 @@ del tipo <literal>x = a + 1</literal>. Es decir que estamos diciendo que <litera
tienen el mismo valor.</simpara>
<programlisting language="elixir" linenumbering="numbered"># a = 1
# b = "elixir"
# c = "cinf1085"
{a, b, c} = {1, "elixir", "cinf1085"}</programlisting>
# c = "ninjas"
{a, b, c} = {1, "elixir", "ninjas"}</programlisting>
<simpara><emphasis role="strong">Enlaces</emphasis></simpara>
<itemizedlist>
<listitem>
Expand Down Expand Up @@ -5440,4 +5440,4 @@ Las más conocidas son <emphasis>Kafka</emphasis> o <emphasis>RabbitMQ</emphasis
<title>Índice</title>

</index>
</book>
</book>
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7505,8 +7505,8 @@ <h3 id="_pattern_matching">11.3. Pattern Matching</h3>
<div class="content">
<pre class="highlightjs highlight"><code class="language-elixir hljs" data-lang="elixir"># a = 1
# b = "elixir"
# c = "cinf1085"
{a, b, c} = {1, "elixir", "cinf1085"}</code></pre>
# c = "ninjas"
{a, b, c} = {1, "elixir", "ninjas"}</code></pre>
</div>
</div>
<div class="paragraph">
Expand Down Expand Up @@ -8014,4 +8014,4 @@ <h2 id="_índice">Índice</h2>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.9/MathJax.js?config=TeX-MML-AM_HTMLorMML"></script>
</body>
</html>
</html>

0 comments on commit 6263b21

Please sign in to comment.