Removed "functional" from title.

This commit is contained in:
Andy Ko 2019-04-09 12:30:29 -07:00
parent 3298d9405c
commit d51fafdbe3
2 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,7 @@
<td>Chapter 7. <a href="architecture.html">Architecture</a></td>
</tr>
<tr>
<td>Chapter 8. <a href="specifications.html">Functional specifications</a></td>
<td>Chapter 8. <a href="specifications.html">Specifications</a></td>
</tr>
<tr>
<td>Chapter 9. <a href="process.html">Process</a></td>

View file

@ -15,7 +15,7 @@
<link rel="stylesheet" href="style.css" />
<title>Functional Specifications</title>
<title>Specifications</title>
</head>
<body>
@ -24,7 +24,7 @@
<img src="images/blueprint.jpg" class="img-responsive" />
<small>Credit: public domain</small>
<h1>Functional Specifications</h1>
<h1>Specifications</h1>
<div class="lead">Andrew J. Ko</div>
<p>When you make something with code, you're probably used to figuring out a design as you go. You write a function, you choose some arguments, and if you don't like what you see, perhaps you add a new argument to that function and test again. This <a href="https://en.wikipedia.org/wiki/Cowboy_coding" target="_blank">cowboy coding</a> as some people like to call it can be great fun! It allows systems to emerge more organically, as you iteratively see your front-end design emerge, the design of your implementation emerges too, co-evolving with how you're feeling about the final product.</p>