Skip to content

Commit 79c6cd3

Browse files
jvillardfacebook-github-bot
authored andcommitted
[website] misc. minor improvements
Summary: - rename the checker "Uninitialized Variable" to "Uninitialized Value" as this is the name of the issue type - delete timestamp XML comment from the man pages to avoid future git churn when updating the website - counting is hard Reviewed By: martintrojer Differential Revision: D24219165 fbshipit-source-id: cf3057373
1 parent cce1934 commit 79c6cd3

25 files changed

+8
-26
lines changed

.github/workflows/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
4. Download the release tarballs and test that the binaries works.
3131
5. Fill in the shasums by running the command at the end of the release text.
3232
--- PUBLISH GITHUB RELEASE HERE ---
33-
5. At some point, copy the GitHub changelog to Changelog.md in the repo.
34-
6. Tweet.
33+
6. At some point, copy the GitHub changelog to Changelog.md in the repo.
34+
7. Tweet.
3535
--- DELETE EVERYTHING ABOVE THIS LINE ---
3636
3737
This is a binary release of Infer for Linux and MacOS. To use it follow these [instructions](http://fbinfer.com/docs/getting-started.html).

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,9 @@ endif
915915
$(QUIET)$(call silent_on_success,Copying man pages,\
916916
$(REMOVE) "$(WEBSITE_DIR)"/static/man/*; \
917917
for man in $(INFER_GROFF_MANUALS); do \
918-
groff -Thtml "$$man" > "$(WEBSITE_DIR)"/static/man/next/$$(basename "$$man").html; \
918+
groff -Thtml "$$man" \
919+
| grep -v '^<!-- CreationDate: .*>$$' \
920+
> "$(WEBSITE_DIR)"/static/man/next/$$(basename "$$man").html; \
919921
done)
920922
$(QUIET)$(call silent_on_success,Building OCaml modules documentation,\
921923
$(MAKE) IS_FACEBOOK_TREE=no NO_BROWSE_DOC=yes doc)

infer/src/base/Checker.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ let config_unsafe checker =
396396
; activates= [Pulse] }
397397
| Uninit ->
398398
{ id= "uninit"
399-
; kind= UserFacing {title= "Uninitialized Variable"; markdown_body= ""}
399+
; kind= UserFacing {title= "Uninitialized Value"; markdown_body= ""}
400400
; support= supports_clang
401401
; short_documentation= "Warns when values are used before having been initialized."
402402
; cli_flags= Some {deprecated= []; show_in_help= true}

website/docs/checker-uninit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Uninitialized Variable"
2+
title: "Uninitialized Value"
33
description: "Warns when values are used before having been initialized."
44
---
55

website/static/man/1.0.0/infer-analyze.1.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/1.0.0/infer-capture.1.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/1.0.0/infer-compile.1.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/1.0.0/infer-debug.1.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/1.0.0/infer-explore.1.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/1.0.0/infer-help.1.html

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)