Skip to content

Commit 457f7fe

Browse files
committed
Merge pull request square#381 from square/jw/are-you-effing-serious
Change file path to abstract representation.
2 parents 621b940 + 343a2d8 commit 457f7fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h4>Adapter Downloads</h4>
6666

6767
Picasso.with(context).load(url).into(view);
6868
}</pre>
69-
69+
7070
<h4>Image Transformations</h4>
7171
<p>Transform images to better fit into layouts and to reduce memory size.</p>
7272
<pre class="prettyprint">Picasso.with(context)
@@ -104,7 +104,7 @@ <h4>Place Holders</h4>
104104
<h4>Resource Loading</h4>
105105
<p>Resources, assets, files, content providers are all supported as image sources.</p>
106106
<pre class="prettyprint">Picasso.with(context).load(R.drawable.landing_screen).into(imageView1);
107-
Picasso.with(context).load(new File("/images/oprah_bees.gif")).into(imageView2);</pre>
107+
Picasso.with(context).load(new File(...)).into(imageView2);</pre>
108108

109109
<h4>Debug Indicators</h4>
110110
<p>For development you can enable the display of a colored ribbon which indicates the image source. Call <code>setDebugging(true)</code> on the Picasso instance.</p>
@@ -176,7 +176,7 @@ <h3 id="license">License</h3>
176176

177177
// Spy on scroll position for real-time updating of current section.
178178
$('body').scrollspy();
179-
179+
180180
// Use smooth-scroll for internal links.
181181
$('a').smoothScroll();
182182

0 commit comments

Comments
 (0)