Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Dec 3, 2015
2 parents 29d300c + 4ffa32b commit b1bb957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Paket.Core/NuGetV3.fs
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ let internal findAutoCompleteVersionsForPackage(v3Url, auth, packageName:Domain.
}

/// Uses the NuGet v3 autocomplete service to retrieve all package versions for the given package.
let FindAutoCompleteVersionsForPackage(auth, nugetURL, package, includingPrereleases, maxResults) =
let FindAutoCompleteVersionsForPackage(nugetURL, auth, package, includingPrereleases, maxResults) =
async {
let! raw = findAutoCompleteVersionsForPackage(auth, nugetURL, package, includingPrereleases, maxResults)
let! raw = findAutoCompleteVersionsForPackage(nugetURL, auth, package, includingPrereleases, maxResults)
match raw with
| Some versions -> return versions
| None -> return [||]
Expand Down

0 comments on commit b1bb957

Please sign in to comment.